* {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Roboto', sans-serif;
	color: #000;
	font-size: 17px;
	background: #fbfbfb;
}

/********************************/

.goto_container {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
	.goto_container p {
		margin: 20px 0;
	}
	.goto_container .btn_accept {
		display: inline-flex;
		height: 50px;
		padding: 0 30px;
		margin: 0 10px;
		align-items: center;
		justify-content: center;
		text-align: center;
		line-height: 1.3;
		background: #2985F7;
		border: 2px solid #2985F7;
		color: #fff !important;
		border-radius: 26px;
		font-size: 20px;
		text-decoration: none !important;
		cursor: pointer;
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		-ms-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
	}
	.goto_container .btn_accept:hover {
		background: #2985F7ee;
	}
	.goto_container .btn_cancel {
		display: inline-flex;
		height: 50px;
		padding: 0 30px;
		margin: 0 10px;
		align-items: center;
		justify-content: center;
		text-align: center;
		line-height: 1.3;
		background: #e6e6e6;
		border: 2px solid #e6e6e6;
		color: #000 !important;
		border-radius: 26px;
		font-size: 20px;
		text-decoration: none !important;
		cursor: pointer;
		-webkit-transition: all 0.4s ease;
		-moz-transition: all 0.4s ease;
		-ms-transition: all 0.4s ease;
		-o-transition: all 0.4s ease;
		transition: all 0.4s ease;
	}
	.goto_container .btn_cancel:hover {
		background: #e6e6e6ee;
	}